home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / comm / news / slrn-bin.lha / slrn / doc / tm / slrnfuns / misc.tm < prev    next >
Text File  |  1999-04-27  |  2KB  |  76 lines

  1. \function{get_variable_value}
  2. \synopsis{-}
  3. \usage{Value get_variable_value (String v)}
  4. \description
  5.    This function returns the value of an internal variable specified
  6.    by \var{v}.  Here \var{v} must be one of the variable names that can be
  7.    used in \var{.slrnrc} `set' commands.  The type of the object returned will
  8.    depend upon the type of the object \var{v} represents.
  9. \seealso{set_integer_variable, set_string_variable}
  10. \done
  11.  
  12. \function{quit}
  13. \synopsis{-}
  14. \usage{Void quit (Integer exit_status)}
  15. \description
  16.    This function will cause the newsreader to exit with exit status
  17.    specified by \var{exit_status}.
  18. \seealso{call}
  19. \done
  20.  
  21. \function{server_name}
  22. \synopsis{-}
  23. \usage{String server_name ()}
  24. \description
  25.    The \var{server_name} function returns the name of the current server.
  26. \seealso{current_newsgroup}
  27. \done
  28.  
  29. \function{set_color}
  30. \synopsis{-}
  31. \usage{Void set_color (String obj, String fg, String bg)}
  32. \description
  33.    This function may be used to set the foreground and background
  34.    colors of an object.  The \var{obj} parameter specifies the object and
  35.    the \var{fg} and \var{bg} parameters specify the foreground and background
  36.    colors, respectively.
  37. \done
  38.  
  39. \function{set_integer_variable}
  40. \synopsis{-}
  41. \usage{Void set_integer_variable (String name, Integer v)}
  42. \description
  43.    This function may be used to set the value of the internal integer
  44.    variable specified by \var{name} to value \var{v}.  \var{name} must be an integer
  45.    variable name allowed in .slrnrc \var{set} commands.
  46. \seealso{set_string_variable, get_variable_value}
  47. \done
  48.  
  49. \function{set_string_variable}
  50. \synopsis{-}
  51. \usage{Void set_string_variable (String name, String v)}
  52. \description
  53.    This function may be used to set the value of the internal string
  54.    variable specified by \var{name} to value \var{v}.  \var{name} must be a string
  55.    variable name allowed in .slrnrc \var{set} commands.
  56. \seealso{set_integer_variable, get_variable_value}
  57. \done
  58.  
  59. \function{tt_send}
  60. \synopsis{Send a string to the terminal}
  61. \usage{Void tt_send (String_Type s)}
  62. \description
  63.    This function may be used to send a string directly to the display
  64.    without any involvement of the screen management layer.
  65. \seealso{message, update}
  66. \done
  67.  
  68. \function{update}
  69. \synopsis{-}
  70. \usage{update ()}
  71. \description
  72.    This function may be used to force the display to be updated.
  73. \seealso{message}
  74. \done
  75.  
  76.